Intial files
This commit is contained in:
parent
d7ea7c36bf
commit
ece82c7881
|
@ -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```
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
resource-pack-updater:
|
||||
build: .
|
||||
ports:
|
||||
- 8080:8080
|
|
@ -0,0 +1 @@
|
|||
print("Hello")
|
Loading…
Reference in New Issue