Skip to content

Commit

Permalink
udpate docker
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Feb 4, 2025
1 parent 2a01095 commit 6d60036
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,10 +1,10 @@
# Use an official Python runtime as a parent image
FROM python:3.11-slim as base

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-container

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/

RUN apt-get update && \
apt-get install -y --no-install-recommends git && \
rm -rf /var/lib/apt/lists/*
RUN apt-get update
RUN apt-get install unzip -y
RUN apt-get install -y --no-install-recommends git && \
rm -rf /var/lib/apt/lists/*

# Copy the application files
COPY src /app/src
Expand Down

0 comments on commit 6d60036

Please sign in to comment.