mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
15 lines
290 B
Docker
15 lines
290 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
#COPY package.json package.json
|
|
#COPY package-lock.json package-lock.json
|
|
RUN chown -R node:node /app
|
|
USER node
|
|
#RUN npm install # handled in the dev.sh
|
|
|
|
## Add user
|
|
# Add group with ID 1000 and user with ID 1000
|
|
#COPY ./ /app/
|
|
CMD [ "bash", "/app/dev.sh" ]
|