-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
23 lines (17 loc) · 1.23 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
# **************************************************************************** #
# #
# ::: :::::::: #
# dockerfile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: qurobert <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/01/04 10:29:43 by qurobert #+# #+# #
# Updated: 2021/01/04 15:18:12 by qurobert ### ########lyon.fr #
# #
# **************************************************************************** #
FROM debian:buster
RUN apt-get -y update && apt install -y ufw && apt-get -y install nginx mariadb-server mariadb-client php php-fpm php-mysql php-common php-cli php-common php-json php-opcache php-readline php-json php-mbstring php-xml php-gd php-curl sudo openssl wget libnss3-tools vim
WORKDIR .
COPY ./srcs/ .
EXPOSE 80 443
ENTRYPOINT ["bash", "on.sh"]