Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit 10dfeb7

Browse files
committed
Fix compose install in Dockerfile
Use official docker/compose alpine image as base Fixes exoframejs/exoframe#226
1 parent 1ab5d27 commit 10dfeb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM alpine
1+
FROM docker/compose:1.24.0
22

3-
# install required libs, docker-compose and yarn
4-
RUN apk update && apk add --no-cache libstdc++ libgcc py-pip yarn && pip install docker-compose
3+
# install required libs and yarn
4+
RUN apk update && apk add --no-cache libstdc++ libgcc yarn
55

66
# copy binary
77
COPY exoframe-server /

0 commit comments

Comments
 (0)