mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-26 18:34:58 +00:00
16 lines
186 B
Docker
16 lines
186 B
Docker
FROM fergalmoran/angular-cli
|
|
|
|
COPY . /app/
|
|
WORKDIR /app/
|
|
USER root
|
|
|
|
RUN chown user /app/ -R
|
|
|
|
USER user
|
|
# RUN yarn install
|
|
|
|
EXPOSE 4200/tcp
|
|
|
|
ENTRYPOINT ["/app/server.sh"]
|
|
CMD ["default"]
|