2023-03-04 23:35:00 +00:00
|
|
|
# For details, see https://github.com/devcontainers/images/tree/main/src/ruby
|
2024-06-04 17:30:22 +00:00
|
|
|
FROM mcr.microsoft.com/devcontainers/ruby:1-3.3-bookworm
|
2022-03-13 14:03:36 +00:00
|
|
|
|
2024-06-08 10:33:28 +00:00
|
|
|
# Install node version from .nvmrc
|
|
|
|
WORKDIR /app
|
|
|
|
COPY .nvmrc .
|
|
|
|
RUN /bin/bash --login -i -c "nvm install"
|
2022-03-13 14:03:36 +00:00
|
|
|
|
2024-06-07 20:18:02 +00:00
|
|
|
# Install additional OS packages
|
|
|
|
RUN apt-get update && \
|
|
|
|
export DEBIAN_FRONTEND=noninteractive && \
|
|
|
|
apt-get -y install --no-install-recommends libicu-dev libidn11-dev ffmpeg imagemagick libvips42 libpam-dev
|
2022-03-13 14:03:36 +00:00
|
|
|
|
2024-06-07 20:18:02 +00:00
|
|
|
# Move welcome message to where VS Code expects it
|
2024-06-08 10:33:28 +00:00
|
|
|
COPY .devcontainer/welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt
|