Skip to content

Commit

Permalink
Fix: Docker file as to AS
Browse files Browse the repository at this point in the history
  • Loading branch information
mec committed Aug 23, 2024
1 parent 68aeaf2 commit 0107aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# We want to support older Rubies
ARG RUBY_VERSION=2.7.8
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim AS base

# Rails app lives here
WORKDIR /rails

# Build stage
FROM base as build
FROM base AS build

# Install packages needed to build gems and node modules
RUN apt-get update -qq && \
Expand Down

0 comments on commit 0107aa9

Please sign in to comment.