Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.2 #37

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions StroyCord.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:lts-alpine as build
WORKDIR /build
COPY package*.json ./

RUN apk update && apk add python3 make g++
RUN apk update && apk add python3 make g++ ffmpeg
RUN npm ci
COPY . .

Expand All @@ -15,7 +15,7 @@ FROM node:lts-alpine
ENV NODE_ENV=production

WORKDIR /app
RUN apk update && apk add python3 make g++
RUN apk update && apk add python3 make g++ ffmpeg

COPY --from=build /build/dist ./dist
COPY --from=build /build/package*.json ./
Expand Down
32 changes: 26 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"@discordjs/voice": "^0.16.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"ffmpeg-static": "^5.2.0",
"i18n-js": "^4.3.0",
"libsodium-wrappers": "^0.7.11",
"mongodb": "^5.8.1",
Expand Down
Loading