Skip to content

Commit 93046c0

Browse files
committed
added Dockerfile
1 parent f486288 commit 93046c0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM python:3.10.12-slim
2+
3+
RUN apt update && apt install awscli -y --no-install-recommends
4+
5+
WORKDIR /app
6+
7+
COPY main.py .
8+
COPY entrypoint.sh .
9+
10+
ENTRYPOINT ["/app/entrypoint.sh"]

0 commit comments

Comments
 (0)