enterprise/Dockerfile

21 lines
457 B
Docker
Raw Normal View History

2023-08-04 11:13:41 +08:00
FROM registry.cn-shanghai.aliyuncs.com/devcon/godev:v1.0.14
ADD . /app/src
WORKDIR /app/src
RUN mkdir -p /app/bin /app/log
RUN export GOROOT=/usr/local/go1.18.2 && \
export GOPROXY=https://goproxy.cn && \
export PATH=$PATH:$GOROOT/bin && \
go mod tidy && \
go build cmd/enterprise.go && \
mv enterprise /app/bin && \
cp -r conf /app && \
cp start.sh /app && \
chmod +x /app/start.sh
WORKDIR /app
2023-08-04 11:30:40 +08:00
EXPOSE 9283
2023-08-04 11:13:41 +08:00
CMD ["/app/start.sh"]