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
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apk update && \
|
||||||
apt-get install -y \
|
apk add --no-cache \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
build-essential \
|
build-base \
|
||||||
python3 \
|
python3 \
|
||||||
git \
|
git \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue