Browse Source

Fix Dockerfile

pull/1687/head
Hironsan 2 years ago
parent
commit
33a5544780
1 changed files with 2 additions and 2 deletions
  1. 4
      docker/Dockerfile

4
docker/Dockerfile

@ -2,7 +2,7 @@ ARG PYTHON_VERSION="3.8.12-slim-buster"
ARG NODE_VERSION="16.5-alpine3.14" ARG NODE_VERSION="16.5-alpine3.14"
FROM node:${NODE_VERSION} AS frontend-builder FROM node:${NODE_VERSION} AS frontend-builder
COPY ../frontend /frontend/
COPY frontend/ /frontend/
WORKDIR /frontend WORKDIR /frontend
ENV PUBLIC_PATH="/static/_nuxt/" ENV PUBLIC_PATH="/static/_nuxt/"
@ -55,7 +55,7 @@ RUN pip install --no-cache-dir -U pip \
&& pip install --no-cache-dir /deps/*.whl \ && pip install --no-cache-dir /deps/*.whl \
&& rm -rf /deps && rm -rf /deps
COPY --chown=doccano:doccano .. /doccano
COPY --chown=doccano:doccano . /doccano
WORKDIR /doccano/backend WORKDIR /doccano/backend
COPY --from=frontend-builder /frontend/dist /doccano/backend/client/dist COPY --from=frontend-builder /frontend/dist /doccano/backend/client/dist
RUN python manage.py collectstatic --noinput RUN python manage.py collectstatic --noinput

Loading…
Cancel
Save