fixing Dockerfile

This commit is contained in:
2022-12-22 23:09:52 -03:00
parent a980569769
commit 2c125146f2

View File

@@ -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