Ching 8e100f7170
All checks were successful
continuous-integration/drone Build is passing
feat: 增加 linear webhook 接口和 discord 通知
2024-03-20 17:05:24 +08:00

15 lines
291 B
Docker

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