Skip to content

Commit 613be39

Browse files
Fix docker compose issue (alshedivat#2799)
Fixed the `docker compose` issue, when trying to run the repository, locally. alshedivat#2795 <hr> <h3>To test these out: </h3> Run: `docker compose pull` `docker compose build` `docker compose up` --------- Co-authored-by: Amir Pourmand <[email protected]>
1 parent 6a795af commit 613be39

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Diff for: Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
FROM ruby:latest
2+
23
ENV DEBIAN_FRONTEND noninteractive
34

45
Label MAINTAINER Amir Pourmand
56

67
RUN apt-get update -y && apt-get install -y --no-install-recommends \
78
locales \
9+
nodejs npm \
810
imagemagick \
911
build-essential \
1012
zlib1g-dev \

Diff for: bin/entry_point.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
set -euo pipefail
3+
4+
echo "Entry point script running"
25

36
CONFIG_FILE=_config.yml
47

0 commit comments

Comments
 (0)