From 2c125146f27140ae2438478ebdbbdaa4f15248b4 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Thu, 22 Dec 2022 23:09:52 -0300 Subject: [PATCH] fixing Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea18ea7..9460180 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:latest as build RUN apk add --update nodejs npm RUN npm install --global yarn -COPY ['.', '/usr/src'] +COPY [".", "/usr/src"] WORKDIR /usr/src RUN yarn