Skip to content

Commit

Permalink
fix: Fix Docker image name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 2, 2024
1 parent 14a0bfb commit 00cec7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile_static
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:{{ cookiecutter.python_version }} as build-stage
FROM python:3.11 as build-stage

Check warning on line 1 in Dockerfile_static

View workflow job for this annotation

GitHub Actions / docker

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down

0 comments on commit 00cec7f

Please sign in to comment.