33 lines
770 B
Docker
33 lines
770 B
Docker
FROM nginx:latest
|
|
RUN rm -rf /etc/nginx/html/*
|
|
|
|
# Install dependencies needed to add NodeSource repo
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
build-essential \
|
|
git \
|
|
gettext-base \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Node.js LTS + npm
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& npm install -g npm@latest
|
|
|
|
|
|
WORKDIR /app
|
|
COPY vue/ ./
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
|
|
RUN mkdir -p /etc/nginx/html \
|
|
&& cp -r ./dist/* /etc/nginx/html/
|
|
|
|
COPY nginx.conf.template /etc/nginx/nginx.conf.template
|
|
COPY nginx_setup.conf.template /etc/nginx/nginx_setup.conf.template
|
|
COPY robots.txt /etc/nginx/html/robots.txt
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|