Skip to content

Commit

Permalink
Accept updated apt packages
Browse files Browse the repository at this point in the history
  • Loading branch information
baelter committed Oct 4, 2024
1 parent 3bb0dd3 commit 5bf1a59
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,6 +1,6 @@
# Base layer
FROM 84codes/crystal:1.13.1-ubuntu-24.04 AS base
RUN apt-get update && apt-get install liblz4-dev
RUN apt-get update && apt-get install -y liblz4-dev
WORKDIR /tmp
COPY shard.yml shard.lock .
RUN shards install --production
Expand All @@ -10,7 +10,7 @@ COPY ./src ./src

# Run specs on build platform
FROM base AS spec
RUN apt-get install etcd-server
RUN apt-get install -y etcd-server
COPY ./spec ./spec
ARG spec_args="--order random"
RUN crystal spec ${spec_args}
Expand Down

0 comments on commit 5bf1a59

Please sign in to comment.