Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Commit 96d513f

Browse files
committed
Chmod the docker entrypoint so it is executable
1 parent d0b0781 commit 96d513f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

backend/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ RUN bundle install --jobs 20 --retry 5
1414
ADD . /usr/src/backend-app
1515
EXPOSE 3000
1616

17-
COPY ./docker-entrypoint.sh /usr/local/bin/
17+
COPY ./docker-entrypoint.sh /
18+
RUN chmod +x /docker-entrypoint.sh
1819

19-
ENTRYPOINT ["docker-entrypoint.sh"]
20+
ENTRYPOINT ["/docker-entrypoint.sh"]
2021
CMD ["rails", "s", "-b", "0.0.0.0"]

0 commit comments

Comments
 (0)