Added openssl to alpine images

This commit is contained in:
Kasra Bigdeli
2023-07-20 12:43:32 -07:00
parent 4252089796
commit baa97f43dd
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
FROM node:18-alpine
RUN apk update && apk upgrade --no-cache && apk add --update --no-cache make gcc g++ git curl
RUN apk update && apk upgrade --no-cache && apk add --update --no-cache make gcc g++ git curl openssl
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app