You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ass/Dockerfile

12 lines
256 B

# ass Dockerfile v0.3.3
# authors:
# - tycrek <t@tycrek.com> (https://tycrek.com/)
# - Zusier <zusier@pm.me> (https://github.com/Zusier)
FROM node:20.9.0-alpine
WORKDIR /opt/ass-src/
COPY . ./
RUN npm i -g pnpm
RUN pnpm i
RUN npm run build
CMD npm start