We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5037f42 commit 5670d13Copy full SHA for 5670d13
docker-compose.yaml
@@ -17,7 +17,7 @@ services:
17
depends_on: [ mongodb ]
18
image: ${REGISTRY:-}todo
19
build:
20
- dockerfile: native.dockerfile
+ dockerfile: jpackage.dockerfile
21
environment:
22
GLOBAL_LOG_LEVEL: warn
23
APPLICATION_LOG_LEVEL: info
jpackage.dockerfile
@@ -1,12 +1,8 @@
1
2
FROM ubuntu:jammy
3
-
4
-# Project setup
5
ARG PROJECT
6
ARG TZ=UTC
7
8
-VOLUME /var/log
9
10
# Machine setup
11
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
12
native.dockerfile
@@ -1,11 +1,7 @@
# Project install
USER 1000
ADD --chown=1000:1000 build/native/nativeCompile/$PROJECT /
0 commit comments