Fixed Dockerfile

This commit is contained in:
Bastian Meissner 2020-05-24 23:23:40 +02:00
parent f46ddcf237
commit 2fc18f6c60

View file

@ -7,9 +7,9 @@ COPY package.json .
RUN [ "yarn", "install" ] RUN [ "yarn", "install" ]
COPY data . COPY data /app/data
COPY src . COPY src /app/src
COPY public . COPY public /app/public
RUN [ "yarn", "build" ] RUN [ "yarn", "build" ]