Intial files

This commit is contained in:
Jimmy 2021-05-23 20:47:44 +12:00
parent d7ea7c36bf
commit ece82c7881
4 changed files with 20 additions and 1 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:slim-buster
COPY src /src
ENTRYPOINT [ "python", "src/main.py" ]

View File

@ -1 +1,6 @@
# resource-pack-updater
# resource-pack-updater
##Run
```docker-compose up --build```

7
docker-compose.yml Normal file
View File

@ -0,0 +1,7 @@
version: "3.9"
services:
resource-pack-updater:
build: .
ports:
- 8080:8080

1
src/main.py Normal file
View File

@ -0,0 +1 @@
print("Hello")