Skip to content

Commit f40e187

Browse files
committed
Update dockerfile
1 parent 6608624 commit f40e187

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

Diff for: Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ FROM python:3.7
22

33
COPY requirements.txt ./
44
RUN pip install -r requirements.txt
5-
RUN pip install tensorflow --upgrade
65

76
COPY ./ ./
87
WORKDIR scripts

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
container-test:
2-
docker build --build-arg TF_VERSION=2.4.0-rc0 -t keras-io .
2+
docker build -t keras-io .
33
docker run --rm -d -p 8000:8000 --name keras-io-server keras-io
44
sleep 10
55
docker exec keras-io-server echo I am alive

Diff for: theme/base.html

+10
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@
3030

3131
<script async defer src="https://buttons.github.io/buttons.js"></script>
3232

33+
<script>
34+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
35+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
36+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
37+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
38+
39+
ga('create', 'UA-175165319-128', 'auto');
40+
ga('send', 'pageview');
41+
</script>
42+
3343
</head>
3444

3545
<body>

Diff for: theme/landing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
2626
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
2727

28-
ga('create', 'UA-61785484-1', 'auto');
28+
ga('create', 'UA-175165319-128', 'auto');
2929
ga('send', 'pageview');
3030
</script>
3131

0 commit comments

Comments
 (0)