Skip to content

Commit

Permalink
style(docker): fix hadolint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Aug 31, 2024
1 parent 3ebf964 commit eca2694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.12-alpine3.18 AS base

RUN python -m pip install --upgrade pip setuptools wheel
RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel

COPY . /app

WORKDIR /app
RUN python -m pip install --upgrade -r requirements.txt
RUN python -m pip install --no-cache-dir --upgrade -r requirements.txt

# github will mount the `GITHUB_WORKSPACE` directory to /github/workspace
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#workdir
Expand Down

0 comments on commit eca2694

Please sign in to comment.