Browse Source

Move Dockerfile to docker directory

pull/1686/head
Hironsan 2 years ago
parent
commit
541f26c8d8
2 changed files with 3 additions and 3 deletions
  1. 2
      .github/workflows/publish-image.yml
  2. 4
      docker/Dockerfile

2
.github/workflows/publish-image.yml

@ -45,7 +45,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
file: ./docker/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Dockerfile → docker/Dockerfile

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