Skip to content

Commit

Permalink
2.4.3
Browse files Browse the repository at this point in the history
Fixed wrong python3 installation in docker
  • Loading branch information
AlexInCube committed Apr 11, 2024
1 parent 5585365 commit fa29e88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1
FROM node:20-alpine as base
RUN apk update && apk upgrade && apk add ffmpeg
RUN apk update && apk upgrade && apk add ffmpeg && apk add python3

FROM base as build
RUN apk add python3 && apk add build-base && apk add make
RUN apk add build-base && apk add make
RUN npm i -g pnpm@latest
WORKDIR /botbuild
COPY . .
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.2'
services:
mongo:
container_name: mongo
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aicbot",
"version": "2.4.2",
"version": "2.4.3",
"description": "Discord Bot for playing music",
"main": "build/main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion runInDocker.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker-compose up --detach --force-recreate
docker-compose up --detach --force-recreate --no-build

0 comments on commit fa29e88

Please sign in to comment.