Commit d93577ee authored by Martin Juhás's avatar Martin Juhás
Browse files

fix: fix capitalization in dockerfile

No API changes
parent 79636e96
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -65,8 +65,6 @@ dependency_scanning:

secret_detection:
  allow_failure: false
  extends:
    - .disable-for-tagger

create-tag:
  image: python:3.8-buster
+2 −2
Original line number Diff line number Diff line
FROM python:3.8-alpine as builder
FROM python:3.8-alpine AS builder

ENV POETRY_NO_INTERACTION=1 \
    POETRY_VIRTUALENVS_IN_PROJECT=1 \
@@ -19,7 +19,7 @@ RUN poetry config installer.max-workers 5 && \
    poetry install --no-interaction --no-ansi -vvv --without dev --compile && \
    rm -rf ${POETRY_CACHE_DIR}

FROM python:3.8-alpine as runner
FROM python:3.8-alpine AS runner

ENV VIRTUAL_ENV=/backend/.venv \
    PATH="/backend/.venv/bin:$PATH"