All checks were successful
continuous-integration/drone/push Build is passing
12 lines
198 B
Docker
12 lines
198 B
Docker
FROM ubuntu:latest
|
|
|
|
LABEL maintainer = "Aterve"
|
|
ENV TIME_ZONE=Amsterdam/Europe
|
|
|
|
WORKDIR /defold
|
|
|
|
COPY ./java-defold-bob/setup.sh /defold/setup.sh
|
|
RUN chmod +x /defold/setup.sh
|
|
RUN /defold/setup.sh
|
|
|