Files
fauxjira/Dockerfile
2020-01-28 20:07:17 -05:00

8 lines
253 B
Docker

FROM node:lts-alpine
RUN adduser jira-clone --gecos GECOS --shell /bin/bash --disabled-password --home /app
COPY . /app
WORKDIR /app
RUN npm run install-dependencies && \
cp -v /app/docker/entrypoint.sh /usr/bin/entrypoint
ENTRYPOINT ["entrypoint"]