Skip to content

Commit

Permalink
devcontainer: fix package manager command to install git and bash in …
Browse files Browse the repository at this point in the history
…alpine image with 'apk' instead of 'apt'
  • Loading branch information
hakatashi committed Oct 4, 2024
1 parent d3a7d33 commit aaea3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/slackbot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM node:20-alpine
# Install build dependencies for node-canvas
# https://github.com/Automattic/node-canvas/issues/2239#issuecomment-2005970772
RUN apk update && apk add build-base g++ cairo-dev pango-dev giflib-dev && \
apt add git bash
apk add git bash

WORKDIR /code

0 comments on commit aaea3e4

Please sign in to comment.