mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
feat: Development environment with docker compose (#709)
This commit is contained in:
parent
8ef27ca32a
commit
12ece8dfac
4 changed files with 159 additions and 35 deletions
14
config/development/Dockerfile.server
Normal file
14
config/development/Dockerfile.server
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM node:18-alpine as server-dependencies
|
||||
|
||||
RUN apk -U upgrade \
|
||||
&& apk add build-base python3 \
|
||||
--no-cache
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
|
||||
RUN npm install npm@latest --global \
|
||||
&& npm install pnpm --global \
|
||||
&& pnpm import \
|
||||
&& pnpm install
|
Loading…
Add table
Add a link
Reference in a new issue