mirror of
https://github.com/dariusk/express-activitypub.git
synced 2025-09-05 13:38:00 +00:00
add dockerfile
This commit is contained in:
parent
8c2349ade6
commit
1b327bbeac
1 changed files with 18 additions and 0 deletions
18
Dockerfile
Normal file
18
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue