diff --git a/Dockerfile b/Dockerfile index 1b35c55..d364f5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM elixir:1.17-alpine AS build # Install build dependencies -RUN apk add --no-cache build-base git nodejs npm +RUN apk add --no-cache build-base git # Prepare build dir WORKDIR /app @@ -26,8 +26,6 @@ COPY lib lib COPY assets assets # Compile assets -RUN npm ci --prefix ./assets -RUN npm run deploy --prefix ./assets RUN mix assets.deploy # Compile the project