Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Bubbles The Dev <[email protected]>
  • Loading branch information
KernFerm authored Nov 11, 2024
1 parent 366843e commit 2d394cc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Use an official Nginx image
FROM nginx:alpine

# Update package repositories and install OpenSSL
RUN apk update && apk upgrade && apk add --no-cache openssl
# Update package repositories and install the latest versions of expat, curl, and openssl
RUN apk update && \
apk upgrade && \
apk add --no-cache openssl expat curl

# Copy the HTML file to the Nginx default location
COPY index.html /usr/share/nginx/html/index.html
Expand Down

0 comments on commit 2d394cc

Please sign in to comment.