Skip to content

Commit

Permalink
chore: add curl in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisuhag committed Oct 31, 2024
1 parent 0f5635a commit 01a148e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM alpine:latest

COPY meteor /usr/bin/meteor
RUN apk update
RUN apk add ca-certificates
RUN apk add ca-certificates curl

CMD ["meteor"]
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ RUN ["make", "build-dev"]
FROM alpine:latest
COPY --from=base /build/meteor /usr/bin/meteor
RUN apk update
RUN apk add ca-certificates
RUN apk add ca-certificates curl

CMD ["meteor"]

0 comments on commit 01a148e

Please sign in to comment.