Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "FromAsCasing: 'as' and 'FROM' keywords' casing do not match" warning #81

Merged
merged 3 commits into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions {{ cookiecutter.project_slug }}/docker/images/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:{{ cookiecutter.python_version.lower()}}-slim as base
FROM python:{{ cookiecutter.python_version.lower()}}-slim AS base

ENV PYTHONUNBUFFERED 1

Expand Down Expand Up @@ -31,12 +31,12 @@ RUN chmod +x /opt/docker/entrypoint.sh
ENTRYPOINT ["/opt/docker/entrypoint.sh"]


FROM base as local
FROM base AS local

RUN poetry install --no-root --no-cache --no-ansi --no-interaction --with dev \
&& poetry cache clear pypi --all


FROM base as live
FROM base AS live

COPY ./api /opt/api