Skip to content
Snippets Groups Projects

Sws 21 add frontend to local env

Merged Andrew Kapuscinski requested to merge SWS-21-add-frontend-to-local-env into main
1 unresolved thread
Files
2
+ 11
1
@@ -2,4 +2,14 @@ FROM node:14.15.1-alpine3.12
WORKDIR /code/
ENTRYPOINT ["./bin/boot-local.sh"]
\ No newline at end of file
COPY ./apps/web ./
RUN apk add --no-cache \
git \
python2 \
g++ \
make
RUN npm install
CMD [ "./node_modules/.bin/ng", "serve", "--host", "0.0.0.0" ]
\ No newline at end of file
Loading