akkounts/Dockerfile
Râu Cao 78ecef80dc
All checks were successful
continuous-integration/drone/push Build is passing
WIP: Import deno modules for use with import maps
2024-10-09 15:17:35 +02:00

23 lines
530 B
Docker

# syntax=docker/dockerfile:1
FROM ruby:3.3.4
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", "yarn.lock", "./"]
RUN bundle install
RUN gem install foreman
RUN npm install -g yarn
RUN yarn install
ENTRYPOINT ["/usr/bin/tini", "--"]
EXPOSE 3000