dockerfile: mention build-image command

This commit is contained in:
Patrik Oldsberg
2021-02-17 21:06:59 +01:00
parent 1ca39b7525
commit 38fe527d97
4 changed files with 10 additions and 3 deletions
+2
View File
@@ -26,6 +26,8 @@ In order to work with the new build method, the `Dockerfile` at `packages/backen
# yarn install
# yarn tsc
# yarn build
#
# Once the commands have been run, you can build the image using `yarn build-image`
FROM node:14-buster-slim
@@ -56,6 +56,8 @@ following `Dockerfile`, which is also included when creating a new app with
# yarn install
# yarn tsc
# yarn build
#
# Once the commands have been run, you can build the image using `yarn build-image`
FROM node:14-buster-slim
+4 -3
View File
@@ -6,6 +6,8 @@
# yarn install
# yarn tsc
# yarn build
#
# Once the commands have been run, you can build the image using `yarn build-image`
FROM node:14-buster-slim
@@ -18,8 +20,7 @@ ADD yarn.lock package.json packages/backend/dist/skeleton.tar.gz ./
RUN yarn install --frozen-lockfile --production --network-timeout 300000 && rm -rf "$(yarn cache dir)"
# This will copy the contents of the dist-workspace when running the build-image command.
# Do not use this Dockerfile outside of that command, as it will copy in the source code instead.
# Then copy the rest of the backend bundle, along with any other files we might want.
ADD packages/backend/dist/bundle.tar.gz app-config.yaml ./
CMD ["node", "packages/backend"]
CMD ["node", "packages/backend", "--config", "app-config.yaml"]
@@ -6,6 +6,8 @@
# yarn install
# yarn tsc
# yarn build
#
# Once the commands have been run, you can build the image using `yarn build-image`
FROM node:14-buster-slim