-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (23 loc) · 1.09 KB
/
Makefile
File metadata and controls
30 lines (23 loc) · 1.09 KB
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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: jinyoo <jinyoo@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/01/27 16:02:28 by jinyoo #+# #+# #
# Updated: 2023/01/27 16:10:11 by jinyoo ### ########.fr #
# #
# **************************************************************************** #
all: run
run:
docker build -t react .
docker run -it --name ft_tscen_front -p 3000:3000 react
clean:
docker rm ft_tscen_front
fclean: clean
docker rmi react
re:
$(MAKE) fclean
$(MAKE) all
.PHONY: all clean fclean re