aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Dockerfile b/Dockerfile
index 7fa9402..d728eb4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,3 @@
-FROM node AS build-env
-WORKDIR /build
-COPY package.json /build/
-RUN npm i
-COPY . /build/
-RUN npm run build
-
FROM nginx:alpine
-COPY --from=build-env /build/dist /usr/share/nginx/html
+COPY . /usr/share/nginx/html
RUN chmod 555 -R /usr/share/nginx/html