Update Dockerfile

This commit is contained in:
Liam 2022-10-26 17:18:43 +01:00
parent 9f95baaf83
commit ec64746a8e

@ -25,6 +25,10 @@ COPY . .
# Uncomment the following line in case you want to disable telemetry during the build.
ENV NEXT_TELEMETRY_DISABLED 1
# Install dependencies
RUN yarn
# Build the project
RUN yarn build
# If using npm comment out above and use below instead