shut up docker

This commit is contained in:
Donovan Daniels 2024-06-29 02:17:46 -05:00
parent fa36795dde
commit 2ace8e5f76
Signed by: Donovan_DMC
GPG Key ID: 907D29CBFD6157BA

View File

@ -1,4 +1,4 @@
FROM ruby:3.2.2-alpine3.18 as ruby-builder
FROM ruby:3.2.2-alpine3.18 AS ruby-builder
RUN apk --no-cache add build-base cmake git glib-dev postgresql14-dev
@ -8,7 +8,7 @@ RUN gem i foreman && BUNDLE_IGNORE_CONFIG=true bundle install -j$(nproc) \
&& find /usr/local/bundle/gems/ -name "*.c" -delete \
&& find /usr/local/bundle/gems/ -name "*.o" -delete
FROM node:18-alpine3.18 as node-builder
FROM node:18-alpine3.18 AS node-builder
RUN apk --no-cache add git
WORKDIR /app
COPY package.json yarn.lock ./