From 34381242c309ba1d0b9edc282d92d6d77aa7cbaa Mon Sep 17 00:00:00 2001 From: spokequenouille Date: Thu, 14 Jan 2021 23:36:28 +0100 Subject: [PATCH] :construction: add dockerfile --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a546d41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:dubnium +WORKDIR /application +RUN yarn install +COPY . . +EXPOSE 2020 +CMD ["yarn", "serve"] \ No newline at end of file