Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
160 B

FROM nginx:1.29-alpine
# Copy the public directory
COPY . /app/public/
# Copy the nginx config file
COPY ./site.conf /etc/nginx/conf.d/default.conf
EXPOSE 80