mirror of
https://github.com/meshtastic/web.git
synced 2026-04-19 05:17:08 -04:00
16 lines
276 B
Docker
16 lines
276 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
RUN rm -r /usr/share/nginx/html \
|
|
&& mkdir -p /usr/share/nginx/html \
|
|
&& mkdir -p /etc/nginx/conf.d
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
ADD dist .
|
|
|
|
COPY ./infra/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|