saroj502 commited on
Commit
ee274b6
·
1 Parent(s): 86a2d73
Files changed (3) hide show
  1. Dockerfile +2 -2
  2. code/Untitled.ipynb +51 -0
  3. code/hello.py +0 -1
Dockerfile CHANGED
@@ -2,9 +2,9 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
5
- COPY ./hello.py /code/hello.py
6
 
7
- RUN pip install --no-cache-dir --upgrade -r /code/hello.py
8
 
9
  COPY . .
10
 
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./Untitled.ipynb /code/Untitled.ipynb
6
 
7
+ RUN pip install --no-cache-dir --upgrade -r /code/Untitled.ipynb
8
 
9
  COPY . .
10
 
code/Untitled.ipynb ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 14,
6
+ "id": "b09afbb1-cb88-4ba3-95c8-eba0b484456e",
7
+ "metadata": {},
8
+ "outputs": [
9
+ {
10
+ "name": "stdout",
11
+ "output_type": "stream",
12
+ "text": [
13
+ "Hello Argilla\n"
14
+ ]
15
+ }
16
+ ],
17
+ "source": [
18
+ "print(\"Hello Argilla\")\n"
19
+ ]
20
+ },
21
+ {
22
+ "cell_type": "code",
23
+ "execution_count": null,
24
+ "id": "9226f05b-1a03-45b8-af4d-2fc031514bc3",
25
+ "metadata": {},
26
+ "outputs": [],
27
+ "source": []
28
+ }
29
+ ],
30
+ "metadata": {
31
+ "kernelspec": {
32
+ "display_name": "Python 3 (ipykernel)",
33
+ "language": "python",
34
+ "name": "python3"
35
+ },
36
+ "language_info": {
37
+ "codemirror_mode": {
38
+ "name": "ipython",
39
+ "version": 3
40
+ },
41
+ "file_extension": ".py",
42
+ "mimetype": "text/x-python",
43
+ "name": "python",
44
+ "nbconvert_exporter": "python",
45
+ "pygments_lexer": "ipython3",
46
+ "version": "3.8.17"
47
+ }
48
+ },
49
+ "nbformat": 4,
50
+ "nbformat_minor": 5
51
+ }
code/hello.py DELETED
@@ -1 +0,0 @@
1
- print("Hello")