Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/0.22.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ RUN set -eux; \
rm -rf /var/lib/apt/lists/*

COPY --from=builder /opt/thrift/bin/thrift /usr/local/bin/thrift
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY tests/smoke.thrift /tmp/smoke.thrift
COPY ../docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ../tests/smoke.thrift /tmp/smoke.thrift

RUN set -eux; \
thrift --version | grep -F "$THRIFT_VERSION"; \
Expand Down
4 changes: 2 additions & 2 deletions docker/0.22.0/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ RUN set -eux; \
apk add --no-cache libstdc++

COPY --from=builder /opt/thrift/bin/thrift /usr/local/bin/thrift
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY tests/smoke.thrift /tmp/smoke.thrift
COPY ../docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ../tests/smoke.thrift /tmp/smoke.thrift

RUN set -eux; \
thrift --version | grep -F "$THRIFT_VERSION"; \
Expand Down
4 changes: 2 additions & 2 deletions docker/0.23.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ RUN set -eux; \
rm -rf /var/lib/apt/lists/*

COPY --from=builder /opt/thrift/bin/thrift /usr/local/bin/thrift
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY tests/smoke.thrift /tmp/smoke.thrift
COPY ../docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ../tests/smoke.thrift /tmp/smoke.thrift

RUN set -eux; \
thrift --version | grep -F "$THRIFT_VERSION"; \
Expand Down
4 changes: 2 additions & 2 deletions docker/0.23.0/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ RUN set -eux; \
apk add --no-cache libstdc++

COPY --from=builder /opt/thrift/bin/thrift /usr/local/bin/thrift
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY tests/smoke.thrift /tmp/smoke.thrift
COPY ../docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ../tests/smoke.thrift /tmp/smoke.thrift

RUN set -eux; \
thrift --version | grep -F "$THRIFT_VERSION"; \
Expand Down
Loading