Fix docker compose issue (#2799)
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>
This commit is contained in:
parent
6a795aff79
commit
613be397bf
@ -1,10 +1,12 @@
|
|||||||
FROM ruby:latest
|
FROM ruby:latest
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
Label MAINTAINER Amir Pourmand
|
Label MAINTAINER Amir Pourmand
|
||||||
|
|
||||||
RUN apt-get update -y && apt-get install -y --no-install-recommends \
|
RUN apt-get update -y && apt-get install -y --no-install-recommends \
|
||||||
locales \
|
locales \
|
||||||
|
nodejs npm \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
build-essential \
|
build-essential \
|
||||||
zlib1g-dev \
|
zlib1g-dev \
|
||||||
|
|||||||
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo "Entry point script running"
|
||||||
|
|
||||||
CONFIG_FILE=_config.yml
|
CONFIG_FILE=_config.yml
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user