add dockerfile

This commit is contained in:
Albatroz Jeremias 2023-01-07 16:04:31 +00:00
parent 8c2349ade6
commit 1b327bbeac

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
FROM node:buster
# USER helpbuttons
WORKDIR /app
# RUN yarn install --save activitypub-express
RUN apt update && apt install git
COPY . /app/
RUN npm i
# RUN yarn run
# RUN git clone -b develop https://git.pleroma.social/pleroma/pleroma.git /pleroma \
# && git checkout ${PLEROMA_VER}
EXPOSE 3000
ENTRYPOINT ["node index.js"]