All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m11s
9 lines
285 B
Docker
9 lines
285 B
Docker
FROM nginx:alpine
|
|
|
|
COPY public/ /usr/share/nginx/html
|
|
|
|
# Install wget and download jQuery
|
|
RUN apk add --no-cache wget && \
|
|
mkdir -p /usr/share/nginx/html/jquery && \
|
|
wget https://code.jquery.com/jquery-3.5.1.slim.min.js -O /usr/share/nginx/html/jquery/jquery-3.5.1.slim.min.js
|