Skip to content

Commit 8e3901f

Browse files
authored
Create Dockerfile
1 parent b7790d0 commit 8e3901f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.9-slim
2+
3+
# Copies your code file from your action repository to the filesystem path `/` of the container
4+
COPY update_publiccode.py /update_publiccode.py
5+
6+
# Executes `update_publiccode.py` when the Docker container starts up
7+
ENTRYPOINT ["python3", "/update_publiccode.py"]

0 commit comments

Comments
 (0)