Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-alpine
FROM python:3.13-alpine

ARG DEVELOPMENT
ARG BUILD_DATE
Expand All @@ -9,7 +9,7 @@
WORKDIR /app

# Install dockerize
ENV DOCKERIZE_VERSION v0.6.1

Check warning on line 12 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-develop-open / build-image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
RUN apk --update add --virtual build-dependencies curl tar gzip && \
curl -o dockerize.tar.gz \
https://raw.githubusercontent.com/kbase/dockerize/master/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && \
Expand Down
Loading