akkounts/Dockerfile
Râu Cao 8cc2c9554f
Revert "Fix Ruby in Docker container on Apple silicon"
This reverts commit bbf3fb91a0389ab4c3fd9440b049a703425b28e7.
2024-08-12 10:15:18 +02:00

23 lines
517 B
Docker

# syntax=docker/dockerfile:1
FROM ruby:3.3.0
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl \
ldap-utils tini libvips
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
RUN apt-get update && apt-get install -y nodejs
WORKDIR /akkounts
COPY ["Gemfile", "Gemfile.lock", "package.json", "./"]
RUN bundle install
RUN gem install foreman
RUN npm install -g yarn
RUN yarn install
ENTRYPOINT ["/usr/bin/tini", "--"]
EXPOSE 3000