mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2025-09-21 06:41:35 +01:00
switch to node-alpine image for docker
This commit is contained in:
parent
a56511b469
commit
03ce663a7e
1 changed files with 4 additions and 4 deletions
|
@ -2,13 +2,13 @@ FROM node:24-alpine
|
|||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
RUN apk update && \
|
||||
apk add --no-cache \
|
||||
ffmpeg \
|
||||
build-essential \
|
||||
build-base \
|
||||
python3 \
|
||||
git \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
|
|
Loading…
Reference in a new issue