0.3.0: initial commit + Dockerfile + rewrite
This commit is contained in:
commit
e679de5991
77 changed files with 4147 additions and 0 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM python:3.13-slim
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN pip install -U pip setuptools
|
||||
|
||||
COPY pyproject.toml docker-run.sh .
|
||||
COPY .env.prod .env
|
||||
COPY freak freak
|
||||
|
||||
RUN pip install -e .
|
||||
|
||||
VOLUME ["/opt/live-app"]
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["/usr/bin/bash", "docker-run.sh"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue