Skip to content

Commit

Permalink
fix: remove alpine imag build
Browse files Browse the repository at this point in the history
  • Loading branch information
enix223 committed Feb 16, 2023
1 parent 1e2c870 commit ae6d7d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build 17-jdk-alpine
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
build-args: |
JDKVER=17.0.6_10
TDVERSION=3.0.2.5
file: Dockerfile_alpine
push: true
tags: |
enix223/tdengine-openjdk-client:17.0.6_10-jdk-alpine-3.0.2.5
enix223/tdengine-openjdk-client:17-jdk-alpine-3.0.2.5
- name: Build 17-jdk-focal
uses: docker/build-push-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile_alpine
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG JDKVER=17.0.6_10
FROM alpine:3.17.2 AS build-env
FROM alpine:3.16 AS build-env
ARG TDVERSION=3.0.2.5
ARG TDVERSION_FULL=ver-${TDVERSION}

WORKDIR /tdengine

RUN apk add --no-cache alpine-sdk gcc musl-dev git cmake bash
RUN apk add --no-cache jansson-dev snappy-dev xz-dev libzip-dev zlib-dev
RUN apk add --no-cache jansson-dev snappy-dev xz-dev libzip-dev zlib-dev libexecinfo libexecinfo-dev

RUN git clone --depth=1 -b ${TDVERSION_FULL} https://github.com/taosdata/TDengine .
RUN git submodule update --init --recursive
Expand Down

0 comments on commit ae6d7d6

Please sign in to comment.