1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00

Remove some newlines

This commit is contained in:
Mo 2023-11-03 21:23:36 +01:00
parent 98bd273bcb
commit ef037a41e2

View file

@ -2,13 +2,10 @@ FROM docker.io/library/python:3.12-slim
RUN apt update && apt install -y sqlite3 RUN apt update && apt install -y sqlite3
EXPOSE 80 EXPOSE 80
ENV ADVLABDB_DATA_DIR=/volumes/data ENV ADVLABDB_DATA_DIR=/volumes/data
WORKDIR /volumes/repo WORKDIR /volumes/repo
COPY requirements.txt . COPY requirements.txt .
RUN pip3 install -r requirements.txt && rm requirements.txt RUN pip3 install -r requirements.txt && rm requirements.txt
COPY . . COPY . .