blob: 2f8feb31397f5e31e075410dcd7d19ce6d0d4aac [file] [log] [blame]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001# ============LICENSE_START===============================================
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +02002# Copyright (C) 2021-2023 Nordix Foundation. All rights reserved.
BjornMagnussonXA80a92002020-03-19 14:31:06 +01003# ========================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# ============LICENSE_END=================================================
16#
17
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010018ARG NEXUS_PROXY_REPO
19
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020020FROM ${NEXUS_PROXY_REPO}alpine:3.17.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010021
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020022RUN apk add --update --no-cache python3 py3-pip nginx
BjornMagnussonXA6f9c2b22021-06-11 16:31:40 +020023
24WORKDIR /usr/src/app
25
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020026COPY app/ .
27COPY cert/ ./cert/
28
29RUN pip3 install -r requirements.txt
BjornMagnussonXA80a92002020-03-19 14:31:06 +010030
BjornMagnussonXA6f9c2b22021-06-11 16:31:40 +020031RUN chmod +x start.sh
32
BjornMagnussonXAdfdca182021-12-10 10:43:32 +010033CMD [ "./start.sh" ]