add basic docker support
This commit is contained in:
parent
8e3c4c8b16
commit
d03cfc9734
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
FROM python:3.12
|
||||||
|
|
||||||
|
# Create app directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Install app dependencies
|
||||||
|
COPY requirements.txt ./
|
||||||
|
|
||||||
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
|
|
||||||
|
COPY ezgg_website ./ezgg_website
|
||||||
|
COPY rio.toml ./
|
||||||
|
COPY .project-root ./
|
||||||
|
|
||||||
|
EXPOSE 8000
|
||||||
|
CMD [ "rio", "run", "--release", "--public" ]
|
||||||
BIN
requirements.txt
BIN
requirements.txt
Binary file not shown.
Loading…
Reference in New Issue
Block a user