Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -33,6 +33,7 @@ RUN poetry config virtualenvs.create false
|
|
| 33 |
RUN poetry config --list
|
| 34 |
|
| 35 |
COPY . .
|
|
|
|
| 36 |
RUN poetry install --no-cache --no-root --without dev
|
| 37 |
|
| 38 |
ENTRYPOINT ["poetry", "run", "python", "-m", "comet.main"]
|
|
|
|
| 33 |
RUN poetry config --list
|
| 34 |
|
| 35 |
COPY . .
|
| 36 |
+
RUN mkdir -p data && chmod -R 777 data
|
| 37 |
RUN poetry install --no-cache --no-root --without dev
|
| 38 |
|
| 39 |
ENTRYPOINT ["poetry", "run", "python", "-m", "comet.main"]
|