Files
gfast/Dockerfile
T
2021-07-20 11:11:30 +08:00

27 lines
870 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM loads/alpine:3.8
LABEL maintainer="john@goframe.org"
###############################################################################
# INSTALLATION
###############################################################################
# 设置固定的项目路径
ENV WORKDIR /var/www/gfast
# 添加应用可执行文件并设置执行权限
ADD ./bin/linux_amd64/main $WORKDIR/main
RUN chmod +x $WORKDIR/main
# 添加I18N多语言文件静态文件配置文件模板文件
ADD i18n $WORKDIR/i18n
ADD public $WORKDIR/public
ADD config $WORKDIR/config
ADD template $WORKDIR/template
###############################################################################
# START
###############################################################################
WORKDIR $WORKDIR
CMD ./main