Intial files
This commit is contained in:
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
FROM python:slim-buster
|
||||||
|
|
||||||
|
|
||||||
|
COPY src /src
|
||||||
|
|
||||||
|
ENTRYPOINT [ "python", "src/main.py" ]
|
||||||
@@ -1 +1,6 @@
|
|||||||
# resource-pack-updater
|
# resource-pack-updater
|
||||||
|
|
||||||
|
|
||||||
|
##Run
|
||||||
|
|
||||||
|
```docker-compose up --build```
|
||||||
|
|||||||
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
resource-pack-updater:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- 8080:8080
|
||||||
1
src/main.py
Normal file
1
src/main.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
print("Hello")
|
||||||
Reference in New Issue
Block a user