Skip to content

Commit

Permalink
Dockerfile: delete dead ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
JonJagger committed Dec 24, 2023
1 parent c686271 commit 0e1a7a5
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ LABEL [email protected]

# - - - - - - - - - - - - - - - -
# install ruby+
# tar is needed to tar-pipe test coverage out of tmpfs.
# tini is needed for pid-1 zombie reaping
# Install util-linux to use `script` to allow ECS exec logging
# - tar is needed to tar-pipe test coverage out of tmpfs.
# - tini is needed for pid-1 zombie reaping
# - util-linux to use `script` to allow ECS exec logging
# - - - - - - - - - - - - - - - -

RUN apk --update --upgrade --no-cache add \
Expand All @@ -17,10 +17,6 @@ RUN apk --update --upgrade --no-cache add \
tini \
util-linux

# - - - - - - - - - - - - - - - -
# install ruby gems
# - - - - - - - - - - - - - - - -

WORKDIR /app
COPY Gemfile .

Expand All @@ -33,7 +29,6 @@ RUN apk --update --upgrade add --virtual build-dependencies build-base \

ARG COMMIT_SHA
ENV SHA=${COMMIT_SHA}
ENV COMMIT_SHA=${COMMIT_SHA}

# ARGs are reset after FROM See https://github.com/moby/moby/issues/34129
ARG BASE_IMAGE
Expand Down

0 comments on commit 0e1a7a5

Please sign in to comment.