Skip to content

Commit

Permalink
Fix Dockerfile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
simao-silva committed Oct 9, 2023
1 parent b83135f commit 70355e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ venv.bak/
# others
geckodriver.log
*.png

renew.bak
deprecated/
.idea
debug
test.sh
.scannerwork
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-alpine@sha256:ae35274f417fc81ba6ee1fc84206e8517f28117566ee6a04a64f004c1409bdac as builder
FROM python:3.12.0-alpine@sha256:ae35274f417fc81ba6ee1fc84206e8517f28117566ee6a04a64f004c1409bdac AS builder

# Prevent Python from writing out pyc files
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-slim-bullseye@sha256:8c5ca5725a49e3ab3a1e76bd7e93fff1aeec2fdfd91288627f4510eea5a72e09 as builder
FROM python:3.12.0-slim-bullseye@sha256:8c5ca5725a49e3ab3a1e76bd7e93fff1aeec2fdfd91288627f4510eea5a72e09 AS builder

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -32,7 +32,7 @@ RUN python3 -m venv $VIRTUAL_ENV && \



FROM python:3.12.0-slim-bullseye@sha256:8c5ca5725a49e3ab3a1e76bd7e93fff1aeec2fdfd91288627f4510eea5a72e09 as geckodriver
FROM python:3.12.0-slim-bullseye@sha256:8c5ca5725a49e3ab3a1e76bd7e93fff1aeec2fdfd91288627f4510eea5a72e09 AS geckodriver

SHELL ["/bin/bash", "-c"]

Expand Down

0 comments on commit 70355e7

Please sign in to comment.