forked from google/ota-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (36 loc) · 1.46 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY package*.json ./
COPY yarn.lock ./
RUN yarn install
COPY src ./src
COPY public ./public
COPY *.js .
COPY .env* .
COPY .eslint* .
RUN npm run build
# production stage
FROM ubuntu:20.04 as production-stage
RUN apt-get update && apt-get --no-install-recommends install -y python3.9 unzip xxd cgpt openjdk-16-jre-headless zip less
WORKDIR /app
VOLUME [ "/app/target", "/app/output"]
COPY otatools.zip .
RUN zip otatools.zip -d bin/sign_apex bin/aapt2 bin/merge_target_files bin/sign_target_files_apks bin/add_img_to_target_files bin/build_image bin/validate_target_files bin/img_from_target_files bin/check_target_files_vintf bin/build_super_image bin/mkuserimg_mke2fs bin/mk_combined_img bin/apexer bin/build_verity_metadata bin/fc_sort "*.pyc" || true
COPY --from=build-stage /app/dist ./dist
COPY *.py .
EXPOSE 8000
CMD ["python3.9", "web_server.py"]