Skip to content

Commit

Permalink
dockerfile rename
Browse files Browse the repository at this point in the history
  • Loading branch information
chaudharysaket committed May 16, 2024
1 parent 52c68bc commit 48640e3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions python/Dockerfile.ecrImage
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM alpine:latest

ARG layer_zip
ARG file_without_dist

RUN apk update && apk add --no-cache curl unzip

WORKDIR /

COPY ${layer_zip} .

RUN unzip ${file_without_dist} -d ./opt
RUN rm ${file_without_dist}

0 comments on commit 48640e3

Please sign in to comment.