0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-04-02 16:46:52 +00:00

all docker images to alpine

This commit is contained in:
vx3r 2020-02-03 19:14:15 +09:00
parent 5cb19c365f
commit 185f135549
3 changed files with 11 additions and 10 deletions

View File

@ -4,9 +4,9 @@ stages:


build-back: build-back:
stage: build stage: build
image: golang:latest image: golang:alpine
script: script:
- GOOS=linux GOARCH=amd64 go build -o ${CI_PROJECT_NAME}-linux-amd64 - go build -o ${CI_PROJECT_NAME}-linux-amd64
artifacts: artifacts:
paths: paths:
- ${CI_PROJECT_NAME}-linux-amd64 - ${CI_PROJECT_NAME}-linux-amd64

View File

@ -1,4 +1,4 @@
FROM debian:stable-slim FROM alpine


WORKDIR /app WORKDIR /app



View File

@ -1,20 +1,21 @@
FROM golang as build-back FROM golang:alpine AS build-back
WORKDIR /wg-gen-web WORKDIR /app
ADD . . ADD . .
RUN go build -o wg-gen-web-linux-amd64 RUN go build -o wg-gen-web-linux-amd64


FROM node:10-alpine as build-front FROM node:10-alpine as build-front
WORKDIR /ui WORKDIR /app
ADD ui . ADD ui .
RUN npm install RUN npm install
RUN npm run build RUN npm run build


FROM debian:stable-slim FROM alpine
WORKDIR /app WORKDIR /app
COPY --from=build-back /wg-gen-web/wg-gen-web-linux-amd64 . COPY --from=build-back /app/wg-gen-web-linux-amd64 .
COPY --from=build-front /ui/dist ./ui/dist COPY --from=build-front /app/dist ./ui/dist
ADD .env . ADD .env .
RUN chmod +x ./wg-gen-web-linux-amd64 RUN chmod +x ./wg-gen-web-linux-amd64
RUN apk add --no-cache ca-certificates
EXPOSE 8080 EXPOSE 8080


CMD ["/app/wg-gen-web-linux-amd64"] CMD ["/app/wg-gen-web-linux-amd64"]