-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
26 lines (22 loc) · 1.1 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Dockerfile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: bdemirka <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/04/24 11:20:54 by bdemirka #+# #+# #
# Updated: 2021/04/24 11:20:54 by bdemirka ### ########.fr #
# #
# **************************************************************************** #
FROM debian:buster
COPY srcs /tmp/
RUN apt-get update && apt-get install -y \
nginx \
mariadb-server \
php-fpm \
php-mysql \
php-mbstring \
wget \
&& rm -rf /var/lib/apt/lists/*
CMD bash /tmp/initial.sh