2019-03-19 13:50:03 +03:00
# WEBUI
2019-10-14 18:18:04 +03:00
FROM node:12.11 as webui
2019-03-19 13:50:03 +03:00
ENV WEBUI_DIR /src/webui
RUN mkdir -p $WEBUI_DIR
COPY ./webui/ $WEBUI_DIR /
WORKDIR $WEBUI_DIR
2019-11-12 12:44:05 +03:00
RUN npm install
2019-03-19 13:50:03 +03:00
RUN npm run build
# BUILD
2021-08-17 18:20:12 +03:00
FROM golang:1.17-alpine as gobuild
2019-03-19 13:50:03 +03:00
RUN apk --update upgrade \
2019-04-01 17:48:08 +03:00
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
2019-03-19 13:50:03 +03:00
RUN mkdir -p /usr/local/bin \
&& curl -fsSL -o /usr/local/bin/go-bindata https://github.com/containous/go-bindata/releases/download/v1.0.0/go-bindata \
&& chmod +x /usr/local/bin/go-bindata
2020-09-16 16:46:04 +03:00
WORKDIR /go/src/github.com/traefik/traefik
2019-08-11 13:20:53 +03:00
# Download go modules
COPY go.mod .
COPY go.sum .
RUN GO111MODULE = on GOPROXY = https://proxy.golang.org go mod download
2020-09-16 16:46:04 +03:00
COPY . /go/src/github.com/traefik/traefik
2019-03-19 13:50:03 +03:00
2020-09-16 16:46:04 +03:00
RUN rm -rf /go/src/github.com/traefik/traefik/static/
COPY --from= webui /src/static/ /go/src/github.com/traefik/traefik/static/
2019-03-19 13:50:03 +03:00
2019-03-19 14:24:04 +03:00
RUN ./script/make.sh generate binary
2019-03-19 13:50:03 +03:00
## IMAGE
2021-08-30 12:38:12 +03:00
FROM alpine:3.14
2019-11-12 12:44:05 +03:00
RUN apk --no-cache --no-progress add bash curl ca-certificates tzdata \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
2019-03-19 13:50:03 +03:00
2020-09-16 16:46:04 +03:00
COPY --from= gobuild /go/src/github.com/traefik/traefik/dist/traefik /
2019-03-19 13:50:03 +03:00
EXPOSE 80
VOLUME [ "/tmp" ]
ENTRYPOINT [ "/traefik" ]