mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-12-24 23:51:03 +00:00
13 lines
No EOL
176 B
Docker
13 lines
No EOL
176 B
Docker
FROM docker.io/library/python:3.11-slim
|
|
|
|
EXPOSE 80
|
|
|
|
WORKDIR /volumes/repo
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["/bin/bash", "init.sh"] |