1
Fork 0
This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Penpot-Desktop/Dockerfile

14 lines
269 B
Docker
Raw Normal View History

2024-05-13 13:12:51 -04:00
# Use NodeJS with Alpine Linux as runtime
FROM node:20 AS runtime
# Set the work directory
WORKDIR /penpot-desktop
# Copy repo to the work directory
COPY . /penpot-desktop
RUN apt update
RUN apt install git rpm -y
# Enable yarn (Yarn is preferred)
CMD sh buildit.sh