Add Dockerfile

This commit is contained in:
Aj - Thomas
2022-05-08 22:19:26 +02:00
parent 15137cc889
commit 911c755daf

View File

@@ -5,8 +5,8 @@ WORKDIR /app
COPY ./package.json /app/package.json
COPY ./yarn.lock /app/yarn.lock
RUN yarn install
COPY . .
RUN yarn install
RUN yarn export
FROM nginx:1.21.6