Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
wassfila committed Apr 13, 2024
1 parent 1395b53 commit 3eed8ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
15 changes: 8 additions & 7 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Use the official Node.js 20 image as a base
FROM node:20

# Setup work directory for all operations
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

# Install
RUN pnpm install

# Copy scripts into the container
COPY install.sh install.sh
COPY build.sh build.sh

# Run install script
RUN ./install.sh

# Set build.sh as the entrypoint
ENTRYPOINT ["./build.sh"]
15 changes: 0 additions & 15 deletions builder/install.sh

This file was deleted.

0 comments on commit 3eed8ff

Please sign in to comment.