We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55c1267 commit 029d2baCopy full SHA for 029d2ba
.gitignore
@@ -3,6 +3,7 @@
3
#environment variables and cache
4
*.env
5
*.pem
6
+*.pyc
7
*/__pycache__/*
8
9
/__pycache__
Dockerfile
@@ -1,6 +1,6 @@
1
FROM python:3.9-slim-buster
2
WORKDIR /app
-COPY ./requirements.txt ./repository_monitor_app_pk.pem /app
+COPY ./requirements.txt /app
RUN pip install -r requirements.txt
COPY . .
EXPOSE 5000
0 commit comments