Skip to content

Commit

Permalink
Add: Dockerfile for development
Browse files Browse the repository at this point in the history
  • Loading branch information
mateussouzaweb committed Jan 30, 2024
1 parent dd5e1cb commit f6c9bd5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:lts
LABEL org.opencontainers.image.source https://github.com/mateussouzaweb/crunchyroll-webos
LABEL maintainer="Mateus Souza <mateussouzaweb@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive

# Install dependencies
RUN apt update && apt install -y make sed curl
RUN mkdir -p /usr/local/bin
RUN curl https://mateussouzaweb.github.io/compactor/install.sh | bash
RUN npm install -g rollup

# Create app directory
WORKDIR /app

0 comments on commit f6c9bd5

Please sign in to comment.