Browse Source

fix dockerfile

pull/9/head
rozetko 1 year ago
parent
commit
97b2f8d638
  1. 7
      Dockerfile

7
Dockerfile

@ -12,7 +12,12 @@ VOLUME [ "/var/www/data" ]
# Copy custom configuration file from the current directory
WORKDIR ${BUILD_PATH}
COPY . ${BUILD_PATH}
COPY tsconfig.json tsconfig.json
COPY package.json package.json
COPY yarn.lock yarn.lock
COPY src src
COPY build build
RUN yarn install
RUN yarn build

Loading…
Cancel
Save