meta / Dockerfile
rippanteq7's picture
Create Dockerfile
10818bc verified
raw
history blame contribute delete
252 Bytes
FROM nikolaik/python-nodejs:latest
USER root
RUN apt-get update && \
apt-get install -y \
chromium && \
apt-get clean
WORKDIR /home/pn/app/
COPY . .
RUN chmod -R 777 ./
USER pn
WORKDIR /home/pn/app/
RUN npm i
EXPOSE 7860
CMD ["npx", "coffee", "."]