Skip to content

Commit

Permalink
Capitalize "as"
Browse files Browse the repository at this point in the history
  • Loading branch information
raidensakura committed Jul 7, 2024
1 parent 1b092f8 commit d4500de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine as base
FROM python:3.11-alpine AS base

RUN apk update && apk add git \
# pillow dependencies
Expand All @@ -8,7 +8,7 @@ RUN apk update && apk add git \

WORKDIR /home/modmail

FROM base as builder
FROM base AS builder

ENV POETRY_NO_INTERACTION=1 \
POETRY_VIRTUALENVS_IN_PROJECT=1 \
Expand All @@ -22,7 +22,7 @@ COPY --chown=modmail:modmail poetry.lock pyproject.toml /home/modmail/

RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --without dev --no-root

FROM base as runtime
FROM base AS runtime

ENV VIRTUAL_ENV=/home/modmail/.venv \
PATH="/home/modmail/.venv/bin:$PATH" \
Expand Down

0 comments on commit d4500de

Please sign in to comment.