tcp-proxy/Dockerfile

13 lines
266 B
Docker
Raw Normal View History

2020-01-14 15:00:01 +00:00
FROM golang:1-alpine as builder
WORKDIR /data
COPY . .
RUN apk add --no-cache build-base make && \
make test && \
make
FROM alpine:latest
WORKDIR /data
COPY ./config/config.yml .
COPY --from=builder /data/tcp-proxy /usr/bin/tcp-proxy
CMD ["/usr/bin/tcp-proxy"]