Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#Release 1.0.0-alpha.2 #11

Merged
merged 2 commits into from
Feb 18, 2024
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
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.16.2 as builder
FROM alpine:3.19.1 as builder

ARG MAVEN_VERSION=3.9.1
ARG MAVEN_VERSION=3.9.6

RUN apk add --update wget zip openjdk8 git

Expand All @@ -11,13 +11,14 @@ RUN wget -q -O /tmp/maven.zip https://dlcdn.apache.org/maven/maven-3/${MAVEN_VER
&& rm -Rf /tmp/apache-maven-${MAVEN_VERSION}/

RUN cd /tmp \
&& echo '# Fetching source code...' \
&& git clone https://github.com/claudineyns/icap-server.git \
&& echo 'Building application...' \
&& echo '# Building application...' \
&& /usr/local/maven/bin/mvn -f icap-server/pom.xml package \
&& mv icap-server/target/*-shaded.jar /tmp/runner.jar \
&& echo 'Build completed.'

FROM alpine:3.16.2
FROM alpine:3.19.1

ENV TZ=BRT+3

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.github.rfc3507</groupId>
<artifactId>icap-server</artifactId>
<version>1.0.0-alpha.1</version>
<version>1.0.0-alpha.2</version>

<name>icap-server</name>
<description>Very basic ICAP Server implementation based on RFC 3507</description>
Expand Down Expand Up @@ -110,4 +110,4 @@

</build>

</project>
</project>
Loading
Loading