mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-06 21:17:43 +00:00
15 lines
No EOL
213 B
Docker
15 lines
No EOL
213 B
Docker
FROM docker.io/library/python:3.11-slim
|
|
|
|
EXPOSE 80
|
|
|
|
ENV ADVLABDB_DATA_DIR=/volumes/data
|
|
|
|
WORKDIR /volumes/repo
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["/bin/bash", "init.sh"] |