Skip to content

Commit

Permalink
added dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
wassfila committed Apr 14, 2024
1 parent bb135c9 commit 72ab463
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM node:20
WORKDIR /workspace

RUN npm install -g pnpm
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/MicroWebStacks/astro-big-doc.git /astro-big-doc
WORKDIR /astro-big-doc

RUN pnpm install

EXPOSE 3001

RUN pnpm astro telemetry disable

ENTRYPOINT ["pnpm", "run"]
CMD ["build"]

0 comments on commit 72ab463

Please sign in to comment.