Ching 928d9685f2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
feat: 创建 barcode_helper 接口;创建 docker file
2024-03-02 17:24:30 +08:00

15 lines
291 B
Docker

# 使用自定义 Docker Registry 中的官方 Python 镜像作为基础镜像
FROM git.tunpok.com/ching/python-env:latest
# 设置工作目录
WORKDIR /app
# 将当前目录下的所有文件复制到容器中
COPY . .
# port number
EXPOSE 9288
# run flask app
CMD ["python", "app.py"]