domino-client/Dockerfile

39 lines
1.1 KiB
Docker
Raw Normal View History

2024-07-17 22:52:07 +02:00
# Create the container from the alpine linux image
#FROM alpine:3.7
2024-07-17 00:13:21 +02:00
FROM node:22-alpine
2024-07-17 22:52:07 +02:00
# Add nginx and nodejs
#RUN apk add --update nginx nodejs
RUN apk add --update nginx
# Create the directories we will need
RUN mkdir -p /tmp/nginx/vue-single-page-app
RUN mkdir -p /var/log/nginx
RUN mkdir -p /var/www/html
# Copy the respective nginx configuration files
COPY nginx/nginx.conf /etc/nginx/nginx.conf
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
# Set the directory we want to run the next commands for
WORKDIR /tmp/nginx/vue-single-page-app
2024-07-17 00:13:21 +02:00
COPY . .
2024-07-17 22:52:07 +02:00
# Copy our source code into the container
# Install the dependencies, can be commented out if you're running the same node version
RUN npm install
# run webpack and the vue-loader
RUN npm run build-only
2024-07-18 23:52:33 +02:00
RUN rm -rf .git
RUN rm -rf .vscode
RUN rm -rf .env
2024-07-17 22:52:07 +02:00
# copy the built app to our served directory
RUN cp -r dist/* /var/www/html
# make all files belong to the nginx user
RUN chown nginx:nginx /var/www/html
# start nginx and keep the process from backgrounding and the container from quitting
CMD ["nginx", "-g", "daemon off;"]