Fix: Fix Sonar GHA indentation
[oam/tr069-adapter.git] / nginx / Dockerfile
1 # ============LICENSE_START========================================================================
2 # O-RAN-SC : tr-069-adapter
3 # =================================================================================================
4 # Copyright (C) 2020 CommScope Inc Intellectual Property.
5 # =================================================================================================
6 # This tr-069-adapter software file is distributed by CommScope Inc
7 # under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # This file is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ===============LICENSE_END=======================================================================
18
19 FROM nginx:latest
20
21 WORKDIR /opt/CSAdapter/
22
23 ADD config/configNginx.sh configNginx.sh
24 RUN chmod +x ./configNginx.sh
25 ADD config/nginx.conf /etc/nginx/nginx.conf
26