Skip to content

Commit

Permalink
Fix docker compose issue (#2799)
Browse files Browse the repository at this point in the history
Fixed the `docker compose` issue, when trying to run the repository,
locally.

#2795 

<hr>

<h3>To test these out: </h3>

Run:
`docker compose pull`
`docker compose build`
`docker compose up`

---------

Co-authored-by: Amir Pourmand <pourmand1376@gmail.com>
  • Loading branch information
kartikey2001 and pourmand1376 authored Oct 23, 2024
1 parent 6a795af commit 613be39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM ruby:latest

ENV DEBIAN_FRONTEND noninteractive

Label MAINTAINER Amir Pourmand

RUN apt-get update -y && apt-get install -y --no-install-recommends \
locales \
nodejs npm \
imagemagick \
build-essential \
zlib1g-dev \
Expand Down
3 changes: 3 additions & 0 deletions bin/entry_point.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash
set -euo pipefail

echo "Entry point script running"

CONFIG_FILE=_config.yml

Expand Down

0 comments on commit 613be39

Please sign in to comment.